home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Report Writers / Crystal Repot 9.0 Full CD version / Setup.exe / ProgramF / CRYSTAL / CRW9 / DEV / INCLUDE / Ufuser.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-01-17  |  917 b   |  37 lines

  1. /*
  2. ** File:    UFUser.h
  3. ** Author:  Rick Cameron, Rex Benning
  4. ** Date:    7 Mar 93
  5. **
  6. ** Purpose: Declarations of tables and functions which must be provided
  7. **          for a user-defined function DLL.
  8. */
  9.  
  10. #if !defined (UFUSER_H)
  11. #define UFUSER_H
  12.  
  13. #if defined (__cplusplus)
  14. extern "C"
  15. {
  16. #endif
  17.  
  18. #define CurVersionNumber 0x0500
  19.  
  20. extern UF5FunctionDefStrings      FunctionDefStrings [];
  21. extern UFFunctionTemplates        FunctionTemplates  [];
  22. extern UFFunctionExamples         FunctionExamples   [];
  23.  
  24. extern UF5FunctionDefStringList   FunctionDefStringList;
  25. extern UFFunctionTemplateList     FunctionTemplateList;
  26. extern UFFunctionExampleList      FunctionExampleList;
  27. extern char                       FAR *ErrorTable    [];
  28.  
  29. extern void InitForJob (UFTInt32u jobId);
  30. extern void TermForJob (UFTInt32u jobId);
  31.  
  32. #if defined (__cplusplus)
  33. }
  34. #endif
  35.  
  36. #endif /* !defined (UFUSER_H) */
  37.